home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / dflat_r_.arc / MAKEFILE.WAT < prev    next >
Text File  |  1991-10-02  |  2KB  |  39 lines

  1. #-------------------------------------------------------------------
  2. #      D - F L A T   M A K E F I L E   -   W A T C O M   C
  3. #-------------------------------------------------------------------
  4.  
  5. all : memopad.exe huffc.exe
  6.     echo all done
  7.  
  8. #-------------------------------------------------------------------
  9. #  Delete the FULL macro for a minimal D-Flat application. You can
  10. #  selectively remove features by deleting #define statements at
  11. #  the beginning of DFLAT.H
  12. #-------------------------------------------------------------------
  13. FULL = BUILD_FULL_DFLAT
  14. #-------------------------------------------------------------------
  15. #  Delete the TESTING macro to eliminate the D-Flat Log and the Reload
  16. #  Help file selection on the Help menu
  17. #-------------------------------------------------------------------
  18. #TESTING = TESTING_DFLAT
  19. #-------------------------------------------------------------------
  20. MODEL = l
  21. #------------------------------------------------
  22. COMPILE = wcl /c /dWATCOM /d$(FULL) /d$(TESTING) /j /c /w4 /s /m$(MODEL)
  23. #------------------------------------------------
  24.  
  25. .c.obj:
  26.     $(COMPILE) $*
  27.  
  28. memopad.exe : memopad.obj window.obj video.obj message.obj             &
  29.               mouse.obj console.obj textbox.obj listbox.obj            &
  30.               normal.obj config.obj menu.obj menubar.obj popdown.obj   &
  31.               rect.obj applicat.obj keys.obj sysmenu.obj menus.obj     &
  32.               editbox.obj dialogs.obj dialbox.obj button.obj           &
  33.               fileopen.obj msgbox.obj helpbox.obj log.obj lists.obj    &
  34.               statbar.obj decomp.obj htree.obj
  35.      wcl *.obj /k8192 /fe=memopad.exe
  36.  
  37. huffc.exe : huffc.c htree.c
  38.      wcl /ml huffc.c htree.c
  39.